Batch 3 - Class 249 - Computational Thinking 2 (Search)

(zoom)

Pre-Class Exercise

Attendance    Kabir, Arjun, Mihir, Advay, Vansh, Raghav, Angad, Aarkin, Vivaan, Sidharth, Ayush, Aneesh, Harshiet, Shikhar, Anishka, Kushagra

Class Notes:
Review of Computational Thinking - Key elements 
Abstraction: There is a graph, with nodes and edges. Abstraction involves focusing on what is important and ignoring the rest - for example, we have not shown how much each tourist attraction cost for entry.
Generalization: Both problems are similar problems - ask students in what respect. Both problems involved going from one point to all other points and coming back to the original problem.
Algorithm: The method to solve the problem. How did you go about traversing the graph? For this kind of the problem, depth first is an intuitive route - you go down a path as far as you can and you backtrack if its the wrong path and try another one. 
Pattern Matching: It seems that we can solve any "route finding" problem by drawing a graph for that - this is pattern matching.

Relate to the above in context of the knight's tour, tour guide and circular numbers discussed last week.

Directory Search

Students may come up with a linear approach of searching through the directory (actually is better to search for "Alok Mittal" starting from front, and for "Zach Burns" starting from back). Some students may have heard of the binary approach. In either case, ask students what would happen if the names were randomly arranged (not in sequential/ sorted order). 

Starting from that baseline, get students to recognize that the sorted order is a special property and can be very useful for search. Binary search is an example of interpolation - a "guess" that halves the search space in each step, unlike the random model reduces the search space by 1 in each step.


Can you think about a method that does not work if the name is not in the directory? "Random search" - why would you do that?

Guess Who?

Take some example of "bad guesses" - guesses which eliminate only one or two people. Note that these guesses could have got lucky, but in the worst case they can take too many guesses. One can also prove that in an average case, this approach is not good (Challenge kids to think about why. For 64 people, what is the average number of guesses if we reduce the search space by 1 each time?) 

Get kids to propose "good guesses". The idea again is to reduce the search space significantly and predictably in each step - half it. How many steps would this approach take on an average with 64 people? In worst case?

Fence the Lion

Again, one strategy can be to keep dropping 1mx1m fences at random and hope it catches the lion. The other is to build a fence dividing the desert into two halves. The lion is now in one of the halves. Next, build a fence across the half containing the lion, constraining the lion to one quarter of the desert. Continue building fences across the half of the remaining desert containing the lion, until the lion is cornered.

Applying Computational Thinking to the problems above

Homework

References: